type net/http.http2Frame
20 uses
net/http (current package)
h2_bundle.go#L1688: type http2frameParser func(fc *http2frameCache, fh http2FrameHeader, countError func(string), payload []byte) (http2Frame, error)
h2_bundle.go#L1823: type http2Frame interface {
h2_bundle.go#L1835: lastFrame http2Frame
h2_bundle.go#L2091: func (fr *http2Framer) ReadFrameForHeader(fh http2FrameHeader) (http2Frame, error) {
h2_bundle.go#L2129: func (fr *http2Framer) ReadFrame() (http2Frame, error) {
h2_bundle.go#L2205: func http2parseDataFrame(fc *http2frameCache, fh http2FrameHeader, countError func(string), payload []byte) (http2Frame, error) {
h2_bundle.go#L2324: func http2parseSettingsFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), p []byte) (http2Frame, error) {
h2_bundle.go#L2465: func http2parsePingFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), payload []byte) (http2Frame, error) {
h2_bundle.go#L2507: func http2parseGoAwayFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), p []byte) (http2Frame, error) {
h2_bundle.go#L2549: func http2parseUnknownFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), p []byte) (http2Frame, error) {
h2_bundle.go#L2560: func http2parseWindowUpdateFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), p []byte) (http2Frame, error) {
h2_bundle.go#L2628: func http2parseHeadersFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), p []byte) (_ http2Frame, err error) {
h2_bundle.go#L2793: func http2parsePriorityFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), payload []byte) (http2Frame, error) {
h2_bundle.go#L2842: func http2parseRSTStreamFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), p []byte) (http2Frame, error) {
h2_bundle.go#L2874: func http2parseContinuationFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), p []byte) (http2Frame, error) {
h2_bundle.go#L2925: func http2parsePushPromise(_ *http2frameCache, fh http2FrameHeader, countError func(string), p []byte) (_ http2Frame, err error) {
h2_bundle.go#L3155: func (fr *http2Framer) readMetaFrame(hf *http2HeadersFrame) (http2Frame, error) {
h2_bundle.go#L3278: func http2summarizeFrame(f http2Frame) string {
h2_bundle.go#L4820: f http2Frame // valid until readMore is called
h2_bundle.go#L5567: func (sc *http2serverConn) processFrame(f http2Frame) error {